type runtime.arenaHint

11 uses

	runtime (current package)
		malloc.go#L642: 			hint := (*arenaHint)(mheap_.arenaHintAlloc.alloc())
		malloc.go#L709: 		hint := (*arenaHint)(mheap_.arenaHintAlloc.alloc())
		malloc.go#L717: 		userArenaHint := (*arenaHint)(mheap_.arenaHintAlloc.alloc())
		malloc.go#L741: func (h *mheap) sysAlloc(n uintptr, hintList **arenaHint, arenaList *[]arenaIdx) (v unsafe.Pointer, size uintptr) {
		malloc.go#L815: 		hint := (*arenaHint)(h.arenaHintAlloc.alloc())
		malloc.go#L818: 		hint = (*arenaHint)(h.arenaHintAlloc.alloc())
		mheap.go#L165: 	arenaHints *arenaHint
		mheap.go#L240: 		arenaHints *arenaHint
		mheap.go#L342: type arenaHint struct {
		mheap.go#L346: 	next *arenaHint
		mheap.go#L804: 	h.arenaHintAlloc.init(unsafe.Sizeof(arenaHint{}), nil, nil, &memstats.other_sys)